home *** CD-ROM | disk | FTP | other *** search
/ Trees of Indiana / Trees of Indiana.iso / pc / data / main.dxr / Internal_38.ls < prev    next >
Encoding:
Text File  |  2002-08-01  |  495 b   |  22 lines

  1. on mouseWithin
  2.   cursor(280)
  3. end
  4.  
  5. on mouseLeave
  6.   cursor(0)
  7. end
  8.  
  9. on mouseUp
  10.   global gDemoWindow
  11.   gDemoWindow = window("@/:Data:Quercus:WHO")
  12.   offsetX = (the stage).rect.left
  13.   offsetY = (the stage).rect.top
  14.   myLeft = the left of sprite 2
  15.   myTop = the top of sprite 2
  16.   myRight = the right of sprite 2
  17.   myBottom = the bottom of sprite 2
  18.   gDemoWindow.rect = rect(offsetX + myLeft, offsetY + myTop, offsetX + myRight, offsetY + myBottom)
  19.   gDemoWindow.windowType = 2
  20.   open(gDemoWindow)
  21. end
  22.